type encoding/binary.encoder
13 uses
encoding/binary (current package)
binary.go#L457: e := &encoder{order: order, buf: buf}
binary.go#L537: type encoder coder
binary.go#L545: func (e *encoder) bool(x bool) {
binary.go#L560: func (e *encoder) uint8(x uint8) {
binary.go#L571: func (e *encoder) uint16(x uint16) {
binary.go#L582: func (e *encoder) uint32(x uint32) {
binary.go#L593: func (e *encoder) uint64(x uint64) {
binary.go#L600: func (e *encoder) int8(x int8) { e.uint8(uint8(x)) }
binary.go#L604: func (e *encoder) int16(x int16) { e.uint16(uint16(x)) }
binary.go#L608: func (e *encoder) int32(x int32) { e.uint32(uint32(x)) }
binary.go#L612: func (e *encoder) int64(x int64) { e.uint64(uint64(x)) }
binary.go#L683: func (e *encoder) value(v reflect.Value) {
binary.go#L762: func (e *encoder) skip(v reflect.Value) {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |